This commit is contained in:
shuo.wang
2025-04-07 14:15:35 +08:00
parent 7465932495
commit 475800898a
3 changed files with 7 additions and 1 deletions

View File

@@ -171,7 +171,8 @@
<select id="getAllUser" resultType="com.cool.store.dto.UserDTO">
select
user_id as userId,
name
name,
mobile
from enterprise_user_${eid}
where active = true
<if test="keyword!=null and keyword!=''">

View File

@@ -41,6 +41,9 @@ public class TallyBookDTO {
@ApiModelProperty(value = "提交时间")
private Date updateTime;
@ApiModelProperty(value = "0,未提交 1,已提交);")
private Integer status;
@ApiModelProperty("操作人")
private String operatorName;

View File

@@ -15,4 +15,6 @@ public class UserDTO {
private String userId;
@ApiModelProperty(value = "用户名")
private String name;
@ApiModelProperty(value = "手机号")
private String mobile;
}