Merge remote-tracking branch 'origin/ext-dev' into ext-dev
commit
52644c1deb
@ -0,0 +1,32 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Author: jokelin
|
||||||
|
* @Date: 2021/2/19 2:58 PM
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class IfReportModel {
|
||||||
|
|
||||||
|
@ApiParam("接口表代码")
|
||||||
|
private String ifTableCode;
|
||||||
|
|
||||||
|
@ApiParam("接口表名称")
|
||||||
|
private String ifTableName;
|
||||||
|
|
||||||
|
@ApiParam("总数")
|
||||||
|
private Integer total;
|
||||||
|
|
||||||
|
@ApiParam("已同步数量")
|
||||||
|
private Integer alreadySync;
|
||||||
|
|
||||||
|
@ApiParam("未同步数量")
|
||||||
|
private Integer noSync;
|
||||||
|
|
||||||
|
@ApiParam("修改时间")
|
||||||
|
private String modifyDatetime;
|
||||||
|
}
|
Loading…
Reference in New Issue