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.
52 lines
1.0 KiB
52 lines
1.0 KiB
3 years ago
|
package com.epmet.entity;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
|
||
|
import lombok.Data;
|
||
|
import lombok.EqualsAndHashCode;
|
||
|
|
||
|
/**
|
||
|
* 数据更新配置表
|
||
|
*
|
||
|
* @author generator generator@elink-cn.com
|
||
|
* @since v1.0.0 2022-09-26
|
||
|
*/
|
||
|
@Data
|
||
|
@EqualsAndHashCode(callSuper=false)
|
||
|
@TableName("data_sync_config")
|
||
|
public class DataSyncConfigEntity extends BaseEpmetEntity {
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/**
|
||
|
* 客户ID。如果该角色由客户定制,其下的机关和部门都不再各自定制自己的角色,这个字段会比较有用。包括通用角色以及客户定制角色。
|
||
|
*/
|
||
|
private String customerId;
|
||
|
|
||
|
/**
|
||
|
* 部门编码
|
||
|
*/
|
||
|
private String deptCode;
|
||
|
|
||
|
/**
|
||
|
* 部门名称
|
||
|
*/
|
||
|
private String deptName;
|
||
|
|
||
|
/**
|
||
|
* 数据名称
|
||
|
*/
|
||
|
private String dataName;
|
||
|
|
||
|
/**
|
||
|
* 开启:open;关闭:closed
|
||
|
*/
|
||
|
private String switchStatus;
|
||
|
|
||
|
/**
|
||
|
* 排序
|
||
|
*/
|
||
|
private Integer sort;
|
||
|
|
||
|
}
|