123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package cn.cslg.pas.common.dto;
- 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 ClientDTO {
- private Integer id;
- /**
- * 委托方名称
- */
- private String name;
- /**
- * 客户负责人
- */
- private Integer personnelId;
- private Integer tenantId;
- /**
- * 备注
- */
- private String remark;
- @TableField(exist = false)
- private String personnelName;
- }
|