Commit 758600b3 by zhangxingmin

是否直签 (0-否 1-是,字典)

parent ec9f2d34
......@@ -84,4 +84,9 @@ public class ApiExpectedCommissionRatioAddRequest {
*/
@NotNull(message = "状态不能为空")
private Integer status;
/**
* 是否直签 (0-否 1-是,字典)
*/
private String isDirectSign;
}
......@@ -91,4 +91,9 @@ public class ApiExpectedCommissionRatioEditRequest {
*/
@NotNull(message = "状态不能为空")
private Integer status;
/**
* 是否直签 (0-否 1-是,字典)
*/
private String isDirectSign;
}
......@@ -68,6 +68,11 @@ public class ApiExpectedCommissionRatioDetailResponse {
private String isExchangeRate;
/**
* 是否直签 (0-否 1-是,字典)
*/
private String isDirectSign;
/**
* 结算币种(字典)
*/
private String currency;
......
......@@ -73,6 +73,11 @@ public class ApiExpectedCommissionRatioPageResponse {
private String currency;
/**
* 是否直签 (0-否 1-是,字典)
*/
private String isDirectSign;
/**
* 对账公司id(部门id)
*/
private String reconciliationCompany;
......
......@@ -105,6 +105,13 @@ public class ExpectedCommissionRatio implements Serializable {
private String currency;
/**
* 是否直签 (0-否 1-是,字典)
*/
@TableField("is_direct_sign")
private String isDirectSign;
/**
* 对账公司id(部门id)
*/
@TableField("reconciliation_company")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment