编号管理实体
This commit is contained in:
parent
2997cc75f6
commit
a7b8c6b89d
|
|
@ -355,6 +355,19 @@ CREATE TABLE JCL_CODERULE_DETAIL (
|
|||
CONSTRAINT JCL_CODERULE_DETAIL PRIMARY KEY (id)
|
||||
);
|
||||
|
||||
--JCL_CODERULE_RESERVED
|
||||
CREATE TABLE JCL_CODERULE_RESERVED (
|
||||
id int auto_increment NOT NULL,
|
||||
coderule_id int(11) null,
|
||||
reserved_code varchar(255) null,
|
||||
reserved_desc varchar (1000) null,
|
||||
creator int null,
|
||||
delete_type int null,
|
||||
create_time date null,
|
||||
update_time date null,
|
||||
CONSTRAINT JCL_CODERULE_RESERVED PRIMARY KEY (id)
|
||||
);
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +0,0 @@
|
|||
package com.engine.organization.entity.codesetting.po;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/30
|
||||
* @Version V1.0
|
||||
**/
|
||||
public class CodeRule {
|
||||
}
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
package com.engine.organization.entity.codesetting.po;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/30
|
||||
* @Version V1.0
|
||||
**/
|
||||
public class CodeRuleDetail {
|
||||
}
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
package com.engine.organization.entity.codesetting.po;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/30
|
||||
* @Version V1.0
|
||||
**/
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class CodeRuleDetailPO {
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
private int coderuleId;
|
||||
|
||||
private String ruleType;
|
||||
|
||||
private String ruleValue;
|
||||
|
||||
private int showOrder;
|
||||
|
||||
private Long creator;
|
||||
private int deleteType;
|
||||
private Date createTime;
|
||||
private Date updateTime;
|
||||
}
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
package com.engine.organization.entity.codesetting.po;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/30
|
||||
* @Version V1.0
|
||||
**/
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class CodeRulePO {
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
private String serialType;
|
||||
|
||||
private String serialEnable;
|
||||
|
||||
private String oneselfType;
|
||||
|
||||
private Long creator;
|
||||
private int deleteType;
|
||||
private Date createTime;
|
||||
private Date updateTime;
|
||||
}
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
package com.engine.organization.entity.codesetting.po;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Author weaver_cl
|
||||
* @Description: TODO
|
||||
* @Date 2022/5/31
|
||||
* @Version V1.0
|
||||
**/
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class CodeRuleReservedPO {
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
private int codeRuleId;
|
||||
|
||||
private String reservedCode;
|
||||
|
||||
private String reservedDesc;
|
||||
|
||||
private Long creator;
|
||||
private int deleteType;
|
||||
private Date createTime;
|
||||
private Date updateTime;
|
||||
}
|
||||
Loading…
Reference in New Issue