Commit d416ab61 by jianshuqin

新增体系,内部备注,内部分类

parent fc135df1
...@@ -44,6 +44,9 @@ public class ResetItemReq { ...@@ -44,6 +44,9 @@ public class ResetItemReq {
@ApiModelProperty("费用类型编号") @ApiModelProperty("费用类型编号")
private String typeNo; // 大类编号 private String typeNo; // 大类编号
@ApiModelProperty("内部分类")
private String typeInnerName; // 内部分类
@ApiModelProperty("所属项目") @ApiModelProperty("所属项目")
private String project; // 所属项目 private String project; // 所属项目
......
...@@ -29,6 +29,8 @@ public class ResetReq { ...@@ -29,6 +29,8 @@ public class ResetReq {
private String typeNo; private String typeNo;
@ApiModelProperty("类型标题") @ApiModelProperty("类型标题")
private String typeName; private String typeName;
@ApiModelProperty("内部分类")
private String typeInnerName;
@ApiModelProperty("会计一级科目") @ApiModelProperty("会计一级科目")
private String accountingSubjectNo; private String accountingSubjectNo;
@ApiModelProperty("会计一级科目") @ApiModelProperty("会计一级科目")
......
...@@ -31,6 +31,8 @@ public class CostDetailDomain { ...@@ -31,6 +31,8 @@ public class CostDetailDomain {
private String typeNo; private String typeNo;
@ApiModelProperty("类型标题") @ApiModelProperty("类型标题")
private String typeName; private String typeName;
@ApiModelProperty("内部分类")
private String typeInnerName;
@ApiModelProperty("类型类别") @ApiModelProperty("类型类别")
private String categoryName; private String categoryName;
......
...@@ -76,6 +76,8 @@ public class CostDomain implements Serializable { ...@@ -76,6 +76,8 @@ public class CostDomain implements Serializable {
private Integer costDepartmentId; private Integer costDepartmentId;
@ApiModelProperty("体系")
private String companySystem;
@ApiModelProperty("主体编号") @ApiModelProperty("主体编号")
private String companyNo; private String companyNo;
@ApiModelProperty("主体名称") @ApiModelProperty("主体名称")
...@@ -88,6 +90,8 @@ public class CostDomain implements Serializable { ...@@ -88,6 +90,8 @@ public class CostDomain implements Serializable {
private String typeNo; private String typeNo;
@ApiModelProperty("类型标题") @ApiModelProperty("类型标题")
private String typeName; private String typeName;
@ApiModelProperty("内部分类")
private String typeInnerName;
@ApiModelProperty("类型类别") @ApiModelProperty("类型类别")
private String categoryName; private String categoryName;
...@@ -116,6 +120,8 @@ public class CostDomain implements Serializable { ...@@ -116,6 +120,8 @@ public class CostDomain implements Serializable {
@ApiModelProperty("费用单备注") @ApiModelProperty("费用单备注")
private String costRemark; private String costRemark;
@ApiModelProperty("内部备注")
private String innerRemark;
@ApiModelProperty("创建时间") @ApiModelProperty("创建时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date createTime; private Date createTime;
......
...@@ -88,7 +88,6 @@ public class CostPlanTempServiceImpl implements CostPlanTempService { ...@@ -88,7 +88,6 @@ public class CostPlanTempServiceImpl implements CostPlanTempService {
costPlanTempDomain.setTypeId(costTypeDomain.getId()); costPlanTempDomain.setTypeId(costTypeDomain.getId());
costPlanTempDomain.setTypeNo(costTypeDomain.getTypeNo()); costPlanTempDomain.setTypeNo(costTypeDomain.getTypeNo());
costPlanTempDomain.setTypeName(costTypeDomain.getTypeName()); costPlanTempDomain.setTypeName(costTypeDomain.getTypeName());
costPlanTempDomain.setTypeInnerName(costTypeDomain.getTypeInnerName());
AccountingSubject accountingSubject = accountingSubjectMapper.selectById(costTypeDomain.getAccountingSubjectId()); AccountingSubject accountingSubject = accountingSubjectMapper.selectById(costTypeDomain.getAccountingSubjectId());
......
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