commit
Some checks failed
API接口参数变更检测 / api-param-check (push) Has been cancelled

This commit is contained in:
2026-06-05 16:18:40 +08:00
parent 1ca34c6bb2
commit 3cba3bb74e
4393 changed files with 450030 additions and 103 deletions

View File

@@ -0,0 +1,70 @@
package jnpf.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
/**
* 门店管理, 值班人员表
*
* @版本: V3.1.0
* @版权: 引迈信息技术有限公司https://www.jnpfsoft.com
* @作者: JNPF开发平台组
* @日期: 2023-07-11
*/
@Data
@TableName("ftb_store_user")
public class StoreUserEntity {
@TableId("F_Id")
private String id;
@TableField("F_StoreId")
private String storeId;
@TableField("F_UserId")
private String userId;
@TableField("F_OrganizeId")
private String organizeId;
@TableField("F_PositionId")
private String positionId;
@TableField("F_GradeId")
private String gradeId;
@TableField("F_TargetType")
private String targetType;
// 过时, 实际业务流程未用
@TableField("F_SHIFTSMARKS")
private Boolean shiftsmarks;
@TableField("F_CREATORUSERID")
private String creatorUserId;
@TableField("F_CREATORTIME")
private Date creatorTime;
@TableField("F_LASTMODIFYUSERID")
private String lastModifyUserId;
@TableField("F_LASTMODIFYTIME")
private Date lastModifyTime;
@TableField("F_DELETEMARK")
private Integer deleteMark;
@TableField("F_DELETETIME")
private Date deleteTime;
@TableField("F_DELETEUSERID")
private String deleteUserId;
@TableField("F_TENANTID")
private String tenantTd;
}