修改
This commit is contained in:
@ -1,23 +1,12 @@
|
||||
package com.xjrsoft.module.sales.dto;
|
||||
|
||||
import com.pictc.annotations.datalog.LogField;
|
||||
import com.pictc.annotations.datalog.LogTable;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import java.time.LocalTime;
|
||||
import java.time.LocalDateTime;
|
||||
import java.math.BigDecimal;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import java.util.List;
|
||||
|
||||
import com.pictc.annotations.datalog.LogTable;
|
||||
import com.pictc.annotations.datalog.LogField;
|
||||
import com.pictc.annotations.datalog.LogJoin;
|
||||
import com.pictc.annotations.datalog.LogJoinColumn;
|
||||
import com.pictc.annotations.datalog.JoinCaseType;
|
||||
import com.pictc.annotations.datalog.JoinType;
|
||||
import com.pictc.annotations.datalog.ValueDirectionType;
|
||||
|
||||
|
||||
|
||||
|
||||
@ -38,7 +27,7 @@ public class UpdateLngCustomerGroupCustomerDto implements Serializable {
|
||||
*/
|
||||
@LogField(name="主键",index=0)
|
||||
@ApiModelProperty("主键")
|
||||
private String id;
|
||||
private Long id;
|
||||
/**
|
||||
* 组编码
|
||||
*/
|
||||
|
||||
@ -3,10 +3,7 @@ package com.xjrsoft.module.sales.vo;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalTime;
|
||||
import java.time.LocalDateTime;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @title: 表单出参
|
||||
@ -21,7 +18,7 @@ public class LngCustomerGroupCustomerVo {
|
||||
* 主键
|
||||
*/
|
||||
@ApiModelProperty("主键")
|
||||
private String id;
|
||||
private Long id;
|
||||
/**
|
||||
* 组编码
|
||||
*/
|
||||
@ -73,6 +70,27 @@ public class LngCustomerGroupCustomerVo {
|
||||
@ApiModelProperty("数据权限id")
|
||||
private Long ruleUserId;
|
||||
|
||||
/**
|
||||
* 客户名称
|
||||
*/
|
||||
@ApiModelProperty("客户名称")
|
||||
private String cuName;
|
||||
|
||||
/**
|
||||
* 国内/国际
|
||||
*/
|
||||
@ApiModelProperty("国内/国际")
|
||||
private String diName;
|
||||
|
||||
/**
|
||||
* 客户类别
|
||||
*/
|
||||
@ApiModelProperty("客户类别")
|
||||
private String typeName;
|
||||
|
||||
/**
|
||||
* 客户分类
|
||||
*/
|
||||
@ApiModelProperty("客户分类")
|
||||
private String className;
|
||||
}
|
||||
|
||||
@ -1,14 +1,12 @@
|
||||
package com.xjrsoft.module.sales.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.xjrsoft.common.annotation.Trans;
|
||||
import com.xjrsoft.common.enums.TransType;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import com.xjrsoft.common.annotation.Trans;
|
||||
import com.xjrsoft.common.enums.TransType;
|
||||
import java.time.LocalTime;
|
||||
import java.time.LocalDateTime;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* @title: 分页列表出参
|
||||
@ -23,7 +21,7 @@ public class LngCustomerGroupPageVo {
|
||||
* 主键
|
||||
*/
|
||||
@ApiModelProperty("主键")
|
||||
private String id;
|
||||
private Long id;
|
||||
/**
|
||||
* 组编码(按类型自动编码)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user