You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
777 B
Java
31 lines
777 B
Java
package com.glxp.api.entity.inout;
|
|
|
|
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 java.util.Date;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@TableName(value = "io_order_muti_set")
|
|
public class IoOrderMutiSetEntity {
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
private Long id;
|
|
|
|
@TableField(value = "curInv")
|
|
private String curInv;
|
|
|
|
@TableField(value = "fromCorp")
|
|
private String fromCorp;
|
|
|
|
@TableField(value = "targetAction")
|
|
private String targetAction;
|
|
|
|
@TableField(value = "remark")
|
|
private String remark;
|
|
|
|
@TableField(value = "updateTime")
|
|
private Date updateTime;
|
|
}
|