Merge branch '20231126-yw' into dev_ksck
commit
34ac7603bd
@ -0,0 +1,103 @@
|
|||||||
|
package com.glxp.api.req.basic;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import javax.validation.Valid;
|
||||||
|
import javax.validation.constraints.NotEmpty;
|
||||||
|
|
||||||
|
@NoArgsConstructor
|
||||||
|
@Data
|
||||||
|
public class AddProductRequest {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品名称
|
||||||
|
*/
|
||||||
|
@JsonProperty("name")
|
||||||
|
@NotEmpty(message = "产品名称必填!")
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 规格型号
|
||||||
|
*/
|
||||||
|
@JsonProperty("spec")
|
||||||
|
@NotEmpty(message = "规格型号必填!")
|
||||||
|
private String spec;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计量单位
|
||||||
|
*/
|
||||||
|
@JsonProperty("measname")
|
||||||
|
@NotEmpty(message = "计量单位必填!")
|
||||||
|
private String measname;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生产企业
|
||||||
|
*/
|
||||||
|
@JsonProperty("manufactory")
|
||||||
|
@NotEmpty(message = "生产企业必填!")
|
||||||
|
private String manufactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 注册证号
|
||||||
|
*/
|
||||||
|
@JsonProperty("registerNo")
|
||||||
|
@NotEmpty(message = "注册证号必填!")
|
||||||
|
private String registerNo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 医疗器械注册人
|
||||||
|
*/
|
||||||
|
@JsonProperty("ylqxzcrbarmc")
|
||||||
|
private String ylqxzcrbarmc;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 注册人英文名称
|
||||||
|
*/
|
||||||
|
@JsonProperty("ylqxzcrbarywmc")
|
||||||
|
private String ylqxzcrbarywmc;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品类别
|
||||||
|
*/
|
||||||
|
@JsonProperty("cplb")
|
||||||
|
private String cplb;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分类编码
|
||||||
|
*/
|
||||||
|
@JsonProperty("flbm")
|
||||||
|
private String flbm;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 商品条码
|
||||||
|
*/
|
||||||
|
@JsonProperty("sptm")
|
||||||
|
private String sptm;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 医保编码
|
||||||
|
*/
|
||||||
|
@JsonProperty("ybbm")
|
||||||
|
private String ybbm;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 统一社会信用号
|
||||||
|
*/
|
||||||
|
@JsonProperty("tyshxydm")
|
||||||
|
private String tyshxydm;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 器械类别
|
||||||
|
*/
|
||||||
|
@JsonProperty("qxlb")
|
||||||
|
private String qxlb;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品描述
|
||||||
|
*/
|
||||||
|
@JsonProperty("cpms")
|
||||||
|
private String cpms;
|
||||||
|
}
|
Loading…
Reference in New Issue