|
@@ -1,6 +1,7 @@
|
|
package org.jeecg.ctop.finance.settlement.entity.pojo;
|
|
package org.jeecg.ctop.finance.settlement.entity.pojo;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
import org.jeecg.common.aspect.annotation.Dict;
|
|
import org.jeecg.common.aspect.annotation.Dict;
|
|
@@ -21,23 +22,30 @@ public class ctopCwjsSettlementInfo implements Serializable {
|
|
/**
|
|
/**
|
|
* 主键id
|
|
* 主键id
|
|
*/
|
|
*/
|
|
|
|
+ //@TableField(exist = false)
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 广告主公司id
|
|
* 广告主公司id
|
|
*/
|
|
*/
|
|
- @Dict(dicCode = "id", dictTable = "ctop_advertiser", dicText = "name")
|
|
|
|
|
|
+ //@Dict(dicCode = "id", dictTable = "ctop_advertiser", dicText = "name")
|
|
private String advertiserId;
|
|
private String advertiserId;
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
+ private String advertiserName;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 产品id
|
|
* 产品id
|
|
*/
|
|
*/
|
|
private String productId;
|
|
private String productId;
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
+ private String productName;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 项目id
|
|
* 项目id
|
|
*/
|
|
*/
|
|
private String projectId;
|
|
private String projectId;
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
+ private String projectName;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 媒体类型 1-头条 2-快手 3-头条内广 4-快手内广
|
|
* 媒体类型 1-头条 2-快手 3-头条内广 4-快手内广
|
|
@@ -78,11 +86,15 @@ public class ctopCwjsSettlementInfo implements Serializable {
|
|
* 创建人id
|
|
* 创建人id
|
|
*/
|
|
*/
|
|
private String createUserId;
|
|
private String createUserId;
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
+ private String createUserName;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 创建时间
|
|
* 创建时间
|
|
*/
|
|
*/
|
|
private Date createTime;
|
|
private Date createTime;
|
|
|
|
+ private String startTime;
|
|
|
|
+ private String endTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 更新时间
|
|
* 更新时间
|