You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
698 B
Java
41 lines
698 B
Java
package com.glxp.api.res.basic;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class BasicSkProjectDetailResponse {
|
|
|
|
|
|
private Long id;
|
|
|
|
/**
|
|
* 耗材产品id
|
|
*/
|
|
private Long relId;
|
|
|
|
/**
|
|
* 定数包模板id
|
|
*/
|
|
private Long pId;
|
|
|
|
/**
|
|
* 数量
|
|
*/
|
|
private Integer count;
|
|
|
|
private String thrName;
|
|
private String thrCode;
|
|
private String measureCount;
|
|
private String measureUnit;
|
|
private String category;
|
|
private String frequency;
|
|
private String price;
|
|
private String ggxh;
|
|
private String remark;
|
|
private String createTime;
|
|
private String createUser;
|
|
private String updateTime;
|
|
private String updateUser;
|
|
|
|
}
|