Jenkins自动合并
commit
7057c685cc
@ -0,0 +1,35 @@
|
||||
package cn.estsh.i3plus.pojo.mes.pcn.model;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : zcg
|
||||
* @Date : 2020/1/10 0010 - 15:28
|
||||
*/
|
||||
@Data
|
||||
@Api("数据采集Model")
|
||||
public class DataAcquisitionModel {
|
||||
|
||||
@ApiParam("对象代码")
|
||||
private String objectCode;
|
||||
|
||||
@ApiParam("对象名称")
|
||||
private String objectName;
|
||||
|
||||
@ApiParam("字段代码")
|
||||
private String fieldCode;
|
||||
|
||||
@ApiParam("字段名称")
|
||||
private String fieldName;
|
||||
|
||||
@ApiParam("字段值")
|
||||
private String fieldValue;
|
||||
//
|
||||
// @ApiParam("组号")
|
||||
// private String groupNo;
|
||||
|
||||
}
|
Loading…
Reference in New Issue