12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package thyyxxk.webserver.entity.medicine;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * @ClassName YpZdManuFactory
- * @Author hsh
- * @Date 2024/1/3 15:49
- * @Version 1.0
- * @Description 药品生产厂家字典
- **/
- @Data
- @TableName(value = "yp_zd_manufactory")
- public class YpZdManuFactory implements Serializable {
- private static final long serialVersionUID = -1L;
- @TableId(value = "code", type = IdType.NONE)
- private String code;
- private String name;
- /**
- * 简称
- */
- private String abbrName;
- /**
- * 地址
- */
- private String address;
- /**
- * 邮编
- */
- private String zipCode;
- /**
- * 电话
- */
- private String telNo;
- /**
- * 联系人
- */
- private String relName;
- /**
- * 产品范围
- */
- private String productRange;
- /**
- * 附注
- */
- private String comment;
- private String pyCode;
- private String dCode;
- /**
- * 1:停用
- */
- private String delFlag;
- /**
- * 1:已使用
- */
- private String useFlag;
- }
|