linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
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
package org.springblade.modules.eCallEventTwo.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 办结单对象 ec_order_done
 *
 * @author ${context.author}
 * @date 2024-05-28 14:42:26
 */
@ApiModel(value = "EcOrderDone对象" , description = "办结单")
@Data
@TableName("ec_order_done")
public class EcOrderDone implements Serializable
{
    private static final long serialVersionUID = 1L;
 
 
    /** 工单ID */
    @ApiModelProperty(value = "主键ID", example = "")
    @TableId(value = "order_id", type = IdType.ASSIGN_ID)
    private Long orderId;
 
    /** 办结单号 */
    @ApiModelProperty(value = "办结单号", example = "")
    @TableField("done_code")
    private String doneCode;
 
    /** 首次办结申请时间 */
    @ApiModelProperty(value = "首次办结申请时间", example = "")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("first_done_apply_time")
    private Date firstDoneApplyTime;
 
    /** 首次办结审核通过时间 */
    @ApiModelProperty(value = "首次办结审核通过时间", example = "")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("first_done_audit_yes_time")
    private Date firstDoneAuditYesTime;
}