11.10 开发

This commit is contained in:
hejinbo
2023-11-10 18:08:30 +08:00
parent 7cfc39190a
commit 4cf4fa6f5c
14 changed files with 311 additions and 48 deletions
@@ -53,6 +53,10 @@ public class DeptIdentify extends BaseEntity {
* 附件id
*/
private Integer annexId;
/**
* 印章状态 0禁用,1启用
*/
private Integer sealStatus;
public Integer getAnnexId() {
return annexId;
@@ -168,4 +172,12 @@ public class DeptIdentify extends BaseEntity {
public void setIsUse(Integer isUse) {
this.isUse = isUse;
}
public Integer getSealStatus() {
return sealStatus;
}
public void setSealStatus(Integer sealStatus) {
this.sealStatus = sealStatus;
}
}