You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

90 lines
1.4 KiB

package com.epmet.dto;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
import lombok.Data;
/**
* 数据更新配置表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-09-26
*/
@Data
public class DataSyncConfigDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* ID主键
*/
private String id;
/**
* 客户ID。如果该角色由客户定制,其下的机关和部门都不再各自定制自己的角色,这个字段会比较有用。包括通用角色以及客户定制角色。
*/
private String customerId;
/**
* 部门编码
*/
private String deptCode;
/**
* 部门名称
*/
private String deptName;
/**
* 数据名称
*/
private String dataName;
/**
* 开启:open;关闭:closed
*/
private String switchStatus;
private String dataCode;
/**
* 排序
*/
private Integer sort;
/**
* 删除标识:0.未删除 1.已删除
*/
private Integer delFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
private List<DataSyncScopeDTO> scopeList;
}