| 123456789101112131415161718192021222324252627282930 |
- package com.cyksj.model.entity;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import lombok.Getter;
- import lombok.Setter;
- /*
- *项目名: netflix
- *文件名: UserDistribute
- *创建者: JavaZou
- *创建时间:2022/11/14 12:10
- */
- @Getter
- @Setter
- public class UserDistribute extends BaseEntity{
- private Long userId;
- /**
- * 备注
- */
- private String remark;
- /**
- * 商务人员id
- */
- private Long businessId;
- @TableLogic(value = "1", delval = "0")
- private Boolean deleted;
- }
|