xuefei
2020-12-11 386e4215819efd8dd5e0f60b363708871bb7686d
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
43
44
45
46
47
48
49
50
51
52
53
54
package cn.cetc54.platform.zhyl.entity;
 
import cn.cetc54.platform.core.base.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
 
/**
 * @author 
 */
@Data
@Entity
@DynamicInsert
@DynamicUpdate
@Table(name = "t_yl_order")
@TableName("t_yl_order")
@ApiModel(value = "订单")
public class Order extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @Column( length = 24 ,name = "area_id")
    @ApiModelProperty(value = "区域id")
    private String areaId;
 
    @Column( length = 24 ,name = "detail_id")
    @ApiModelProperty(value = "服务详情id")
    private String detailId;
 
    @Column( length = 24 ,name = "detail")
    @ApiModelProperty(value = "服务详情")
    private String detail;
 
    @Column( length = 24 ,name = "duixiang_id")
    @ApiModelProperty(value = "服务对象id")
    private String duixiangId;
 
    @Column( length = 24 ,name = "person_id")
    @ApiModelProperty(value = "服务人员id")
    private String personId;
 
    @Column( length = 2 ,name = "state")
    @ApiModelProperty(value = "订单状态")
    private Integer state;
 
 
}