123
parent
34271f2e7f
commit
1ac62fe7bc
@ -0,0 +1,32 @@
|
||||
package com.nm.gsgl.entity.minfee;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import org.apache.ibatis.type.JdbcType;
|
||||
|
||||
/**
|
||||
* @author: shuguang
|
||||
* @date: 2023年06月19日 14:05
|
||||
* @description: 最小费额表
|
||||
*/
|
||||
@Data
|
||||
@TableName("ALLROADMINFEE_TABLE_1")
|
||||
public class AllRoadMinFee1 {
|
||||
@TableField("VERSION")
|
||||
private String version;
|
||||
@TableField(value = "VALIDTIME",jdbcType = JdbcType.DATE,update = "to_date(#{VALIDTIME},'yyyy-mm-dd hh24:mi:ss')")
|
||||
private String validTime;
|
||||
@TableField("ENPROV")
|
||||
private Integer enProv;
|
||||
@TableField("ENID")
|
||||
private String enID;
|
||||
@TableField("EXPROV")
|
||||
private Integer exProv;
|
||||
@TableField("EXID")
|
||||
private String exID;
|
||||
@TableField("FEEINFO")
|
||||
//private String splitProvince;
|
||||
private String feeInfo;
|
||||
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue