123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package cn.cslg.pas.common.model.cronModel;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- /**
- * <p>
- * 委托方表
- * </p>
- *
- * @author 王岩
- * @since 2022-02-17
- */
- @Data
- public class Client {
- private Integer id;
- /**
- * 客户名称
- */
- private String name;
- /**
- * 客户负责人
- */
- private Integer personnelId;
- /**
- * 1是开启,0是关闭
- */
- private Integer status;
- /**
- * 租户Id
- */
- private Integer tenantId;
- /**
- * 备注
- */
- private String remark;
- private String personnelName;
- }
|