1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package thyyxxk.webserver.entity.medicine;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * @ClassName YpPrintName
- * @Author hsh
- * @Date 2024/1/30 10:35
- * @Version 1.0
- * @Description 药品别名表
- **/
- @Data
- @TableName(value = "yp_print_name")
- public class YpPrintName implements Serializable {
- private static final long serialVersionUID = -1L;
- /**
- * 编码
- */
- private String chargeCode;
- /**
- * 药品名称
- */
- private String printName;
- /**
- * 拼音码
- */
- private String pyCode;
- /**
- * 五笔码
- */
- @TableField(value = "d_code")
- private String dCode;
- /**
- * 1商品名 2别名 T通用名 d停用
- */
- private String ypFlag;
- }
|