Commit 93687176 by jianshuqin

增加功能:增加费用大类

parent 281b0d6a
......@@ -32,6 +32,8 @@ public class CostDetailDto {
private String typeNo;
@ApiModelProperty("类型标题")
private String typeName;
@ApiModelProperty("类型类别")
private String categoryName;
@ApiModelProperty("会计一级科目")
private String accountingSubjectNo;
@ApiModelProperty("会计一级科目")
......
......@@ -32,6 +32,8 @@ public class CostDto {
private String typeNo;
@ApiModelProperty("类型标题")
private String typeName;
@ApiModelProperty("类型类别")
private String categoryName;
@ApiModelProperty("费用类型描述")
private String description;
......
......@@ -31,6 +31,8 @@ public class CostDetailDomain {
private String typeNo;
@ApiModelProperty("类型标题")
private String typeName;
@ApiModelProperty("类型类别")
private String categoryName;
@TableField(exist = false)
@ApiModelProperty("描述")
......
......@@ -88,6 +88,8 @@ public class CostDomain implements Serializable {
private String typeNo;
@ApiModelProperty("类型标题")
private String typeName;
@ApiModelProperty("类型类别")
private String categoryName;
@ApiModelProperty("是否管理成本")
private Boolean isManageCost;
......
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