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.
34 lines
872 B
Java
34 lines
872 B
Java
package com.glxp.mipsdl.entity.ctqyy;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@TableName(value = "V_YPZS_PHYSIC_DICT")
|
|
public class PhysicDictEntity {
|
|
|
|
@TableField("PHYSIC_CODE")
|
|
private String physicCode;
|
|
@TableField("PHYSIC_NO")
|
|
private String physicNo;
|
|
@TableField("PHYSIC_NAME")
|
|
private String physicName;
|
|
@TableField("PHYSIC_SPEC")
|
|
private String physicSpec;
|
|
@TableField("PHYSIC_UNIT")
|
|
private String physicUnit;
|
|
@TableField("PACK_UNIT")
|
|
private String packUnit;
|
|
@TableField("PACK_SPEC")
|
|
private String packSpec;
|
|
@TableField("PACK_UNTUCK")
|
|
private String packUntuck;
|
|
@TableField("PACK_UNTUCK_RESI")
|
|
private String packUntuckResi;
|
|
@TableField("COUNTRY_CODE")
|
|
private String countryCode;
|
|
|
|
}
|