Price.java
856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.lhcredit.project.business.price.domain;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
@Data
@Accessors(chain = true)
public class Price {
/**
* 主键自增
*/
@ApiModelProperty(value = "主键自增")
private Integer id;
/**
* 合同id
*/
@ApiModelProperty(value = "合同id")
private String contractId;
/**
* 价格
*/
@ApiModelProperty(value = "价格")
private String typePrice;
/**
* 委托天数
*/
@ApiModelProperty(value = "委托天数")
private String deliveryDays;
/**
* 委托类型
*/
@ApiModelProperty(value = "委托类型")
private String clientType;
/**
* 状态
*/
@ApiModelProperty(value = "状态")
private String dataStatus;
}