Files
AI-Check-Test/jnpf-ftb/jnpf-ftb-entity/src/main/java/jnpf/entity/StoreUserEntity.java
dongzi 3cba3bb74e
Some checks failed
API接口参数变更检测 / api-param-check (push) Has been cancelled
commit
2026-06-05 16:18:40 +08:00

71 lines
1.5 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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