部中心统计入库表INVENTORY_STATISTICS_JAVA
parent
148396317f
commit
4fc739cd6e
@ -0,0 +1,68 @@
|
|||||||
|
package com.nm.gsgl.entity.statistics;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author: shuguang
|
||||||
|
* @date: 2024年07月19日 16:43
|
||||||
|
* @description: 部中心统计入库表
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@TableName("INVENTORY_STATISTICS_JAVA")
|
||||||
|
public class InventoryStatistics {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下载协议类型
|
||||||
|
*/
|
||||||
|
@TableField("PROTOCOLTYPE")
|
||||||
|
private String protocolType;
|
||||||
|
/**
|
||||||
|
*zip文件名称
|
||||||
|
*/
|
||||||
|
@TableField("BASICFILENAME")
|
||||||
|
private String basicFilename;
|
||||||
|
/**
|
||||||
|
* 部中心zip文件条数
|
||||||
|
*/
|
||||||
|
@TableField("RECORDCOUNT")
|
||||||
|
private Integer recordCount;
|
||||||
|
/**
|
||||||
|
* 部中心zip处理时间 yyyy-MM-dd HH:mm:ss
|
||||||
|
*/
|
||||||
|
@TableField("CREATETIME")
|
||||||
|
private Date createTime;
|
||||||
|
/**
|
||||||
|
* 部中心zip处理日期 yyyy-MM-dd
|
||||||
|
*/
|
||||||
|
@TableField("CREATEDATE")
|
||||||
|
private Date createDate;
|
||||||
|
/**
|
||||||
|
* 部中心zip文件json解析条数
|
||||||
|
*/
|
||||||
|
@TableField("JSONCOUNT")
|
||||||
|
private Integer jsonCount;
|
||||||
|
/**
|
||||||
|
* 入库nmgmpayadmin表名
|
||||||
|
*/
|
||||||
|
@TableField("DBTABLENAME")
|
||||||
|
private String dbTableName;
|
||||||
|
/**
|
||||||
|
* 入库nmgmpayadmin条数
|
||||||
|
*/
|
||||||
|
@TableField("INSERTCOUNT")
|
||||||
|
private Integer insertCount;
|
||||||
|
/**
|
||||||
|
* 入库nmgmpayadmin表判重条数
|
||||||
|
*/
|
||||||
|
@TableField("REPEATCOUNT")
|
||||||
|
private Integer repeatCount;
|
||||||
|
/**
|
||||||
|
* 入库时间 yyyy-MM-dd HH:mm:ss
|
||||||
|
*/
|
||||||
|
@TableField("STORAGETIME")
|
||||||
|
private Date storageTime;
|
||||||
|
}
|
||||||
@ -0,0 +1,14 @@
|
|||||||
|
package com.nm.gsgl.mapper.statistics;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.nm.gsgl.entity.statistics.InventoryStatistics;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author: shuguang
|
||||||
|
* @date: 2024年07月22日 8:17
|
||||||
|
* @description:
|
||||||
|
*/
|
||||||
|
@Mapper
|
||||||
|
public interface InventoryStatisticsMapper extends BaseMapper<InventoryStatistics> {
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Loading…
Reference in New Issue