YpZdManuFactory.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package thyyxxk.webserver.entity.medicine;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. import java.io.Serializable;
  7. /**
  8. * @ClassName YpZdManuFactory
  9. * @Author hsh
  10. * @Date 2024/1/3 15:49
  11. * @Version 1.0
  12. * @Description 药品生产厂家字典
  13. **/
  14. @Data
  15. @TableName(value = "yp_zd_manufactory")
  16. public class YpZdManuFactory implements Serializable {
  17. private static final long serialVersionUID = -1L;
  18. @TableId(value = "code", type = IdType.NONE)
  19. private String code;
  20. private String name;
  21. /**
  22. * 简称
  23. */
  24. private String abbrName;
  25. /**
  26. * 地址
  27. */
  28. private String address;
  29. /**
  30. * 邮编
  31. */
  32. private String zipCode;
  33. /**
  34. * 电话
  35. */
  36. private String telNo;
  37. /**
  38. * 联系人
  39. */
  40. private String relName;
  41. /**
  42. * 产品范围
  43. */
  44. private String productRange;
  45. /**
  46. * 附注
  47. */
  48. private String comment;
  49. private String pyCode;
  50. private String dCode;
  51. /**
  52. * 1:停用
  53. */
  54. private String delFlag;
  55. /**
  56. * 1:已使用
  57. */
  58. private String useFlag;
  59. }