liyuqian
2022-09-06 3afb255628cad549b26cb5dda90f63b1f144132c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.hz.phis.dt.project;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 项目列表实体
 *
 * @author fwq
 */
@Data
public class ProjectListBo {
    /**p-his的项目标识*/
    private String id;
    /**编号*/
    private String coding;
    /**项目名称*/
    private String name;
    /**销售单价*/
    private BigDecimal price;
    /**原价*/
    private BigDecimal originalPrice;
    /**项目分类标识*/
    private String projectTypeId;
    /**项目分类名称*/
    private String projectTypeName;
    /**项目规格*/
    private String specification;
    /**项目其他规格*/
    private String specOther;
    /**项目单位*/
    private String unit;
    /**类别*/
    private String category;
    /**疗程次数*/
    private String courseCount;
    /**英文名称*/
    private String englishName;
    /**his项目名称*/
    private String hisName;
    /**his规格*/
    private String hisSpec;
    /**删除*/
    private Integer isDel;
}