This commit is contained in:
雷欧(林平凡)
2025-08-06 18:04:37 +08:00
parent 7edb6013c8
commit 8638187ced
13 changed files with 431 additions and 93 deletions

View File

@@ -40,6 +40,10 @@ public class SuperAdmin extends BaseEntity
@Excel(name = "是否激活", readConverterExp = "0=否,1=是")
private Integer isActive;
/** 是否删除: 0-否, 1-是 */
@Excel(name = "是否参与订单统计", readConverterExp = "0=否,1=是")
private Integer isCount;
/** 创建时间 */
@Excel(name = "创建时间")
private Date createdAt;
@@ -137,4 +141,14 @@ public class SuperAdmin extends BaseEntity
{
this.updatedAt = updatedAt;
}
public Integer getIsCount()
{
return isCount;
}
public void setIsCount(Integer isCount)
{
this.isCount = isCount;
}
}