package com.lxzn.framework.domain.nc.response;
|
|
import com.lxzn.framework.utils.date.DateUtil;
|
import lombok.Data;
|
|
/**
|
* @author clown
|
* * @date 2023/12/1
|
*/
|
@Data
|
public class FilePassInfo {
|
/*文件路径*/
|
private String fileNamePath;
|
/*文件顺序 6位*/
|
private String fileNumber;
|
/*txt 顺序号 6位*/
|
private String txtNumber;
|
|
private String dayTime = DateUtil.format(DateUtil.getNow(),DateUtil.STR_YEARMONTHDAY);
|
|
private String typePass = "02";
|
|
private Integer txtIntNumber;
|
|
private Integer fileIntNumber;
|
}
|