Commit a9fc8b41 by zhangxingmin

保险产品基础数据

parent c64cbec2
......@@ -80,4 +80,9 @@ public class ApiInsuranceAdditionalProductAddRequest {
* 附加产品图片
*/
private String picture;
/**
* 附加产品所属公司的所在地
*/
private String location;
}
......@@ -89,4 +89,9 @@ public class ApiInsuranceAdditionalProductEditRequest {
* 附加产品图片
*/
private String picture;
/**
* 附加产品所属公司的所在地
*/
private String location;
}
......@@ -107,4 +107,8 @@ public class ApiInsuranceProductAddRequest {
*/
private String picture;
/**
* 产品所属公司的所在地
*/
private String location;
}
......@@ -115,4 +115,9 @@ public class ApiInsuranceProductEditRequest {
* 产品图片
*/
private String picture;
/**
* 产品所属公司的所在地
*/
private String location;
}
......@@ -116,4 +116,9 @@ public class ApiInsuranceAdditionalProductDetailResponse {
* 附加产品图片
*/
private String picture;
/**
* 附加产品所属公司的所在地
*/
private String location;
}
......@@ -65,4 +65,9 @@ public class ApiInsuranceAdditionalProductPageResponse {
* 附加产品图片
*/
private String picture;
/**
* 附加产品所属公司的所在地
*/
private String location;
}
......@@ -151,4 +151,9 @@ public class ApiInsuranceProductDetailResponse {
* 产品图片
*/
private String picture;
/**
* 产品所属公司的所在地
*/
private String location;
}
......@@ -91,4 +91,8 @@ public class ApiInsuranceProductPageResponse {
*/
private String picture;
/**
* 产品所属公司的所在地
*/
private String location;
}
......@@ -95,6 +95,12 @@ public class InsuranceAdditionalProduct implements Serializable {
private String picture;
/**
* 附加产品所属公司的所在地
*/
@TableField("location")
private String location;
/**
* 通用备注
*/
@TableField("remark")
......
......@@ -113,6 +113,12 @@ public class InsuranceProduct implements Serializable {
private String picture;
/**
* 产品所属公司的所在地
*/
@TableField("location")
private String location;
/**
* 通用备注
*/
@TableField("remark")
......
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