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; }