| | |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | |
| | | @TableName("asr_bas_wrk_iotype") |
| | | @TableName("\"SOURCE\".\"asr_bas_wrk_iotype\"") |
| | | public class BasWrkIotype implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | * 入出类型代号 |
| | | */ |
| | | @ApiModelProperty(value= "入出类型代号") |
| | | @TableId(value = "io_type", type = IdType.INPUT) |
| | | @TableField("io_type") |
| | | @TableId(value = "IO_TYPE", type = IdType.INPUT) |
| | | @TableField("IO_TYPE") |
| | | private Integer ioType; |
| | | |
| | | /** |
| | | * 主要 |
| | | */ |
| | | @ApiModelProperty(value= "主要") |
| | | @TableField("io_pri") |
| | | @TableField("IO_PRI") |
| | | private String ioPri; |
| | | |
| | | /** |
| | | * 入出类型描述 |
| | | */ |
| | | @ApiModelProperty(value= "入出类型描述") |
| | | @TableField("io_desc") |
| | | @TableField("IO_DESC") |
| | | private String ioDesc; |
| | | |
| | | /** |
| | | * 修改人员 |
| | | */ |
| | | @ApiModelProperty(value= "修改人员") |
| | | @TableField("modi_user") |
| | | @TableField("MODI_USER") |
| | | private Long modiUser; |
| | | |
| | | /** |
| | | * 修改时间 |
| | | */ |
| | | @ApiModelProperty(value= "修改时间") |
| | | @TableField("modi_time") |
| | | @TableField("MODI_TIME") |
| | | private Date modiTime; |
| | | |
| | | /** |
| | | * 创建者 |
| | | */ |
| | | @ApiModelProperty(value= "创建者") |
| | | @TableField("appe_user") |
| | | @TableField("APPE_USER") |
| | | private Long appeUser; |
| | | |
| | | /** |
| | | * 添加时间 |
| | | */ |
| | | @ApiModelProperty(value= "添加时间") |
| | | @TableField("appe_time") |
| | | @TableField("APPE_TIME") |
| | | private Date appeTime; |
| | | |
| | | public BasWrkIotype() {} |