123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package thyyxxk.webserver.entity.querydata;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import org.apache.ibatis.annotations.Param;
- import thyyxxk.webserver.utils.DecimalUtil;
- import java.util.Date;
- /**
- * <p>
- * 描述
- * </p>
- *
- * @author xc
- * @date 2021-04-06 14:37
- */
- @Data
- public class ConsumablesStatistics {
- /**
- * 项目的名字
- * */
- private String entryName;
- /**
- * 耗材院内编码
- * */
- private String hospitalCode;
- /**
- *产地品牌
- * */
- private String originBrand;
- /**
- *数量
- * */
- private float number;
- /**
- *金额
- * */
- private float amountOfMoney;
- /**
- *来源
- * */
- private String source;
- /**
- * 搜索的条件 下面都是
- * */
- private String startTime;
- private String endTime;
- /**
- * 费用类别
- * */
- private String classCode;
- /**
- *项目编码
- * */
- private String projectCode;
- }
|