package com.matrix.system.hive.bean; import com.matrix.core.pojo.EntityDTO; import com.matrix.core.anotations.Extend; /** * @description 积分流水 * @author * @date 2020-05-05 23:09 */ public class SysSourceFlow extends EntityDTO{ @Extend private static final long serialVersionUID = 1L; /** * 主键 */ private Integer id; /** * 会员id */ private Long vipId; /** * 分值 */ private Long source; /** * 操作员id */ private Long staffId; /** * 操作员名称 */ private String staffName; /** * 操作备注 */ private String remark; /** * 订单id */ private Long orderId; /** * 扩展字段1 */ private String t1; /** * 扩展字段2 */ private String t2; /** * 扩展字段3 */ private String t3; /** * 扩展字段4 */ private String t4; public Integer getId() { return id; } public SysSourceFlow setId(Integer id) { this.id=id; return this; } public Long getVipId() { return vipId; } public SysSourceFlow setVipId(Long vipId) { this.vipId=vipId; return this; } public Long getSource() { return source; } public SysSourceFlow setSource(Long source) { this.source=source; return this; } public Long getStaffId() { return staffId; } public SysSourceFlow setStaffId(Long staffId) { this.staffId=staffId; return this; } public String getStaffName() { return staffName; } public SysSourceFlow setStaffName(String staffName) { this.staffName=staffName; return this; } public String getRemark() { return remark; } public SysSourceFlow setRemark(String remark) { this.remark=remark; return this; } public Long getOrderId() { return orderId; } public SysSourceFlow setOrderId(Long orderId) { this.orderId=orderId; return this; } public String getT1() { return t1; } public SysSourceFlow setT1(String t1) { this.t1=t1; return this; } public String getT2() { return t2; } public SysSourceFlow setT2(String t2) { this.t2=t2; return this; } public String getT3() { return t3; } public SysSourceFlow setT3(String t3) { this.t3=t3; return this; } public String getT4() { return t4; } public SysSourceFlow setT4(String t4) { this.t4=t4; return this; } }