linwe
2024-05-28 0ae58361b572a82a8ff1be2256c0d25fa5ec3ea4
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
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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 答复单对象 ec_order_resp
 *
 * @author ${context.author}
 * @date 2024-05-28 14:42:26
 */
@ApiModel(value = "EcOrderResp对象" , description = "答复单")
@Data
@TableName("ec_order_resp")
public class EcOrderResp implements Serializable
{
    private static final long serialVersionUID = 1L;
 
 
    /** 工单号 */
    @ApiModelProperty(value = "主键ID", example = "")
    @TableId(value = "order_id", type = IdType.ASSIGN_ID)
    private Long orderId;
 
    /** 答复单号 */
    @ApiModelProperty(value = "答复单号", example = "")
    @TableField("resp_code")
    private String respCode;
}